home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / fetchstretch.swf / scripts / frame_36 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  304 b   |  19 lines

  1. global_snd = new Sound(this);
  2. mute = false;
  3. sound_mc.onPress = function()
  4. {
  5.    if(!mute)
  6.    {
  7.       mute = true;
  8.       global_snd.setVolume(0);
  9.       this.gotoAndStop(30);
  10.    }
  11.    else
  12.    {
  13.       mute = false;
  14.       global_snd.setVolume(100);
  15.       this.gotoAndPlay(1);
  16.    }
  17. };
  18. stop();
  19.